错误现象 runtime network not ready: NetworkReady=false reason:NetworkPluginNotReady message:docker: network plugin is not ready: cni config uninitialized ...
分类:
Web程序 时间:
2021-06-08 23:40:55
阅读次数:
0
const express = require("express"); const app = express(); app.listen(8080); /** * 请求方式一 * http://localhost:8080/reg?username=zhangsan&password=123456 ...
分类:
Web程序 时间:
2021-06-08 23:36:42
阅读次数:
0
1、镜像下载安装包 wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh 如果之前没有安装过wget,则会报错如下使用如下语句安装wget yum install ...
分类:
其他好文 时间:
2021-06-08 23:20:21
阅读次数:
0
安装环境CentOS *.example.com形式的域名即为泛域名,不通的子域名共用一个证书,省去多次申请的烦恼 1.工具安装 安装最新的certbot yum install -y certbot 已安装certbot,需要升级至高版本 yum update -y certbot 2.证书申请 ...
分类:
Web程序 时间:
2021-06-08 23:18:24
阅读次数:
0
三数之和题目入口 方法一:暴力法,三重for循环,枚举所有的三数组合,时间复杂度为O(\(n^3\)),因为时间复杂度过高,已经TLE了,所以对结果集不作去重处理了,此方法不可以通过 public List<List<Integer>> threeSum(int[] nums) { int len ...
分类:
其他好文 时间:
2021-06-08 23:03:35
阅读次数:
0
docker安装kafka 1、下载zookeeper镜像 docker pull wurstmeister/zookeeper 2、下载kafka镜像 docker pull wurstmeister/kafka 3、查看镜像 docker images 4、单机方式先启动zookeeper容器 ...
分类:
系统相关 时间:
2021-06-08 22:39:02
阅读次数:
0
package cn.ruhsang.syn;import java.util.ArrayList;import java.util.List;//线程不安全的集合public class UnsafeList { public static void main(String[] args) { L ...
分类:
编程语言 时间:
2021-06-08 22:30:05
阅读次数:
0
题解: 方法1: 哈希表:遍历所有节点,每次遍历到一个节点时,判断该节点是否被访问过。 /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x ...
分类:
其他好文 时间:
2021-06-08 22:22:53
阅读次数:
0
yum -y localinstall http://mirrors.ustc.edu.cn/mysql-repo/mysql57-community-release-el7.rpm yum install -y mysql-community-server if [ ! "$(cat /usr/b ...
分类:
数据库 时间:
2021-06-07 21:17:01
阅读次数:
0
yum -y install epel-release wget make gcc-c++ cd /opt wget https://download.redis.io/releases/redis-6.2.3.tar.gz tar -xf redis-6.2.3.tar.gz cd redis-6 ...
分类:
其他好文 时间:
2021-06-07 21:16:38
阅读次数:
0